## CI Environment ##
# Example values:
#  development
#  production
CI_ENV=development

## APPLICATION BASE URL ##
# Example values:
#  http://localhost/upm-seedgenebank
#  http://localhost:8000/upm-seedgenebank
BASE_URL=http://localhost:80/upm-seedgenebank

## DATABASE HOST NAME ##
# Example values:
#  localhost
#  localhost:3306
#  some.db.ip.address:3306
DB_HOST=localhost

## DATABASE USER NAME ##
# Example values:
#   root
#   admin
DB_USER=root

## DATABASE PASSWORD ##
# Example values:
#  root
#  <leave blank if your db doesn't have password>
DB_PASSWORD=

## DATABASE NAME ##
# Example values:
#  database_name
#  seedgenebank
DB_NAME=seedgenebank2

## LOG THRESHOLD ##
# Default value: 0
# Example values:
#  0 = Disables logging, Error logging TURNED OFF
#  1 = Error Messages (including PHP errors)
#  2 = Debug Messages
#  3 = Informational Messages
#  4 = All Messages
LOG_THRESHOLD=0

## MASTER USERNAME ##
# Master username for logging in as admin
# Example values:
#  admin
MASTER_USERNAME=admin

## MASTER PASSWORD ##
# Master password for logging in as admin or logging into other user's account only to read data without write access. DO NOT leave it blank.
# Example values:
#  admin123
MASTER_PASSWORD=12345678

## TIMEZONE ##
# Make sure to set the correct one for your location
TIME_ZONE='Asia/Kuala_Lumpur'
